home *** CD-ROM | disk | FTP | other *** search
-
- #: 89377 Sub-topic 0 - General Information
- Sb: #89194-Warm Boot HELP???
- 26-Jan-85 23:55:55
- Fm: skip gilbrech 71445,534
- To: FRANK PATTON 70055,474
-
- Rebooting's about the simplest thing in the world... to make a .com file
- which does a warm reboot do the following in Debug (drive & XXXX will
- differ):
-
- A>DEBUG
- -A 100 ; assemble code at cs:100H
- XXXX:0100 MOV AX,40 ; set ds to bios data segment
- XXXX:0103 MOV DS,AX
- XXXX:0105 MOV WORD PTR [72],1234 ; set flag to force 'warm' boot
- XXXX:010B JMP FFFF:0 ; jump to chip initialization code
- XXXX:0110 ; (enter RETURN)
- -R CX
- CX 0000
- :10
- -N REBOOT.COM
- -W
- Writing 0010 bytes
- -Q
-
- You can force a 'cold' boot by changing the '1234' above to '0' (or anything
- else...)
-
- (UA RE T): ra